home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / dragonfl / flicpane.dpr < prev    next >
Encoding:
Text File  |  1998-05-27  |  281 b   |  16 lines

  1. program FlicPanelTest;
  2.  
  3. uses
  4.   Forms,
  5.   Aaplayr1 in 'AAPLAYR1.PAS' {Form1},
  6.   Aaplayr2 in 'AAPLAYR2.PAS' {Form2};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.    Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TForm2, Form2);
  14.   Application.Run;
  15. end.
  16.